{% extends "base.html" %} {% block title %}My Documents — Quick Care Connect{% endblock %} {% block content %}

My Medical Documents

Lab reports, X-rays, old prescriptions and other records

Medical History
Upload New Document

Click to browse or drag & drop

PDF, JPG, PNG, WebP — max 10 MB

{% if documents %}
{{ documents|length }} document{{ 's' if documents|length != 1 }}
{% for doc in documents %}
{% if doc.file_type == 'pdf' %} {% else %} {% endif %}
{{ doc.filename }}
{{ doc.category_display }} {% if not doc.is_visible_to_doctor %} Hidden from doctors {% endif %}
{% if doc.description %}

{{ doc.description }}

{% endif %}

{{ doc.uploaded_at.strftime('%d %b %Y') }}  •  {% if doc.file_size < 1024 %}{{ doc.file_size }} B {% elif doc.file_size < 1048576 %}{{ (doc.file_size / 1024)|round(1) }} KB {% else %}{{ (doc.file_size / 1048576)|round(1) }} MB {% endif %}

{% endfor %}
{% else %}
No documents uploaded yet

Upload lab reports, X-rays, or other medical records to keep everything in one place.

{% endif %}
What can you upload?
  • Lab Reports — CBC, LFTs, HbA1c…
  • X-Rays — chest, bone, dental…
  • CT / MRI Scans
  • Old Prescriptions
  • Any other records
Privacy

By default all uploaded documents are visible to your doctors during consultations.

Use the button to hide sensitive documents from doctor view at any time.

{% endblock %}